From: Étienne Mollier Date: Wed, 3 Jun 2026 19:54:21 +0000 (+0200) Subject: skip test failure on big endian systems. X-Git-Tag: archive/raspbian/3.7.0+really3.7.0-5+rpi1^2^2^2~4 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=d46c12443c6337a75473481076b1673bdf6eae3d;p=dcmtk.git skip test failure on big endian systems. Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html Bug-Debian: https://bugs.debian.org/1127756#25 Forwarded: not-needed. Last-Update: 2026-02-17 The issue is known upstream and supposed to be fixed in an upcoming version. Last-Update: 2026-02-17 Gbp-Pq: Name skip-bigendian-roundtrip-failure.patch --- diff --git a/dcmect/tests/t_roundtrip.cc b/dcmect/tests/t_roundtrip.cc index 3d05322b..8bc0462b 100644 --- a/dcmect/tests/t_roundtrip.cc +++ b/dcmect/tests/t_roundtrip.cc @@ -94,6 +94,13 @@ OFTEST(dcmect_roundtrip) return; } + /* Skip that particular test on big endian due to know issue in + * version 3.7.0. This is going to be fixed in a future version. + */ + if (gLocalByteOrder != EBO_LittleEndian) { + return; + } + // Creation EctEnhancedCT* ct = create(); configureIOD(ct);